What is the purpose of the `@debug` directive in SASS?
Description : Usage of `@debug` for debugging in SASS.
Answer :
`@debug` is a directive inSASS used to output values and debug information to the console during compilation. It helps in troubleshooting issues by printing variable values or expressions. For example,`@debug $primary-color;` will print the value of`$primary-color` to the console, assisting in verifying and debugging styles.